home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Space Simulation Series 1: Lift Off
/
Liftoff Space Simulation Series Part 1 (ETI Entertainment)(2002).iso
/
Exploration
/
globals
/
javascript.js.bak
< prev
next >
Wrap
Text File
|
2002-03-26
|
556b
|
13 lines
function newWindow(nwurl,nwspecs){
contentWindow = window.open(url,'contentWindow', specs);
// specs gets set to a string with this exact order:
// 'toolbar=no,location=no,scrollbars=auto,width=360,height=370' (horizontal window)
// 'toolbar=no,location=no,scrollbars=auto,width=280,height=460' (vertical window)
}
function imageWindow(nwurl,width,height) {
width = width + 20;
height = height + 60;
contentWindow = window.open(nwurl,'contentWindow', 'toolbar=no,location=no,scrollbars=auto,width=' + width + ',height=' + height );
}